home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 1 / ACE CD 1.iso / files / games / 1-l / foglora1.dms / in.adf / Install < prev    next >
Encoding:
Text File  |  1992-09-02  |  2.4 KB  |  120 lines

  1. SetPatch quiet
  2. echo c
  3. echo "Fields of Glory"
  4. FAILAT 21
  5. Assign ENV: FOG1:ENV
  6.  
  7. IF EXISTS ENV:BK
  8.  
  9.   LAB Main2
  10.   RequestChoice >ENV:Opt "Fields of Glory" "Fields of Glory*n*n    (c) 1994*n   Microprose" "Play Game|Install to HD|Workbench"
  11.  
  12.   if $Opt EQ 1
  13.     FOG1:fog
  14.   endif
  15.  
  16.   if $Opt EQ 2
  17.     SKIP Install
  18.   endif
  19.  
  20. ELSE
  21.  
  22.   LAB Main1
  23.   RequestChoice >ENV:Opt "Fields of Glory" "Fields of Glory*n*n    (c) 1994*n   Microprose" "Play Game|Backup|Install to HD|Workbench"
  24.  
  25.   if $Opt EQ 0
  26.     LoadWB
  27.     EndCLI
  28.   endif
  29.  
  30.   if $Opt EQ 1
  31.     FOG1:fog
  32.     LoadWB
  33.     EndCLI
  34.   endif
  35.  
  36.   if $Opt EQ 2
  37.     echo "BACKING UP DISKS"
  38.     echo " "
  39.     LAB GetBlank1
  40.     cd RAM:
  41.     copy c:#? ram: QUIET
  42.     assign c: ram:
  43.     Assign s: ram:
  44.     Assign ENV: ram:
  45.     Resident DiskCopy pure
  46.     RequestChoice >ENV:bk1 "Fields of Glory" "You will need two blank*ndisks for this operation" "OK|CANCEL"
  47.     IF $bk1 EQ 0
  48.       SKIP Main1 BACK
  49.     endif
  50.     echo "Source disk is FOG1:"
  51.     echo " "
  52.     DiskCopy FROM df0: TO df0:
  53.     echo >df0:ENV/BK "Fields of Glory backup disk"
  54.     IF ERROR
  55.       SKIP GetBlank1 BACK
  56.     endif
  57.     LAB GetBlank2
  58.     echo " "
  59.     echo " "
  60.     echo "Source disk is FOG2:"
  61.     echo " "
  62.     DiskCopy FROM df0: to df0:
  63.     IF ERROR
  64.       SKIP GetBlank2 BACK
  65.     endif
  66.     echo >FOG1:ENV/BK "Backup made"
  67.     Assign c: FOG1:c
  68.     Assign ENV: FOG1:ENV
  69.     Assign s: FOG1:s
  70.     SKIP Main2 BACK
  71.   endif
  72.  
  73.   if $Opt EQ 3
  74.     Assign FOG1:
  75.     Assign FOG2:
  76.     LAB Install
  77.     RequestFile >ENV:Drawer TITLE "Select directory" DRAWERSONLY
  78.     IF WARN
  79.       SKIP END
  80.     ENDIF
  81.     resident FOG1:c/makedir pure
  82.     resident FOG1:c/copy pure
  83.     echo "INSTALLING TO HARD DISK"
  84.     cd $Drawer
  85.     IF ERROR
  86.       SKIP Install BACK
  87.     ENDIF
  88.     copy FOG1:HD_Info/FOG.Info FOG.Info
  89.     makedir FOG
  90.     cd FOG
  91.     cd >ENV:Drawer
  92.     cd /
  93.     copy FOG1:#? FOG all
  94.     copy FOG2:#? FOG all
  95.       echo " "
  96.       echo "In order to run the game from the hard disk, you must add the"
  97.       echo "following lines to your startup-sequence."
  98.       echo " "
  99.       echo "Assign FOG1: $Drawer"
  100.       echo "Assign FOG2: $Drawer"
  101.       echo " "
  102.       ask "Press Enter to load workbench"
  103.     ELSE
  104.       copy $Startup s:hd_startup-sequence
  105.       echo " "
  106.       echo "Old hard disk startup-sequence copied to s:hd_startup-sequence"
  107.       echo " "
  108.       join FOG1:s/hd_start s:hd_startup-sequence AS $Startup
  109.       wait 5
  110.     ENDIF
  111.     loadwb
  112.     endcli
  113.   endif
  114.  
  115. ENDIF
  116.  
  117. LAB END:
  118.   LoadWB
  119.   EndCLI
  120.